github.com/refraction-networking/utls.Conn.verifiedChains (field)

13 uses

	github.com/refraction-networking/utls (current package)
		conn.go#L61: 	verifiedChains [][]*x509.Certificate
		conn.go#L1643: 	state.VerifiedChains = c.verifiedChains
		conn.go#L1697: 	if len(c.verifiedChains) == 0 {
		handshake_client.go#L967: 	c.verifiedChains = hs.session.verifiedChains
		handshake_client.go#L1178: 			c.verifiedChains, err = fipsAllowedChains(chains)
		handshake_client.go#L1213: 		c.verifiedChains, err = fipsAllowedChains(chains)
		handshake_client.go#L1232: 		if err := c.config.VerifyPeerCertificate(certificates, c.verifiedChains); err != nil {
		handshake_client_tls13.go#L560: 	c.verifiedChains = hs.session.verifiedChains
		handshake_server.go#L541: 	c.verifiedChains = sessionState.verifiedChains
		handshake_server.go#L960: 		c.verifiedChains, err = fipsAllowedChains(chains)
		handshake_server.go#L981: 		if err := c.config.VerifyPeerCertificate(certificates, c.verifiedChains); err != nil {
		handshake_server_tls13.go#L459: 		c.verifiedChains = sessionState.verifiedChains
		ticket.go#L305: 		verifiedChains:    c.verifiedChains,